body {
  background-color: #fff !important;
}
/* Slider Container */
.slider-container {
    width: 100%;
    max-height: 450px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.slider {
    position: relative;
    width: 100%;
    height: 450px;
}
.slide {
    display: none;
    width: 100%;
    height: 450px;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.slide.active {
    display: block;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none; /* Remove background */
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 8px 16px;
    cursor: pointer;
    z-index: 2;
    border-radius: 0; /* Remove circle */
    user-select: none;
}
.left-arrow { left: 20px; }
.right-arrow { right: 20px; }
.slide-text {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    width: 80%;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    display: none;
}
.slide-text.active {
    display: block;
}

/* Use for main heading (e.g., SHIKSHA NA RUKE) */
.slider-heading {
    font-size: 5vw;           /* Responsive large text */
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
}

/* Use for subtitle (e.g., Join hands...) */
.slider-subtitle {
    font-size: 2vw;           /* Responsive subtitle */
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-top: 16px;
    margin-bottom: 0;
    font-weight: 400;
}

.slider-logo {
    max-width: 300px;
    width: 40vw;
    margin-bottom: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Admission Section Styles */
.mission-section {
    position: relative;
    min-height: 100vh;
    background-color: white;
    overflow: hidden;
}

.mission-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 7%;
    position: relative;
}

.mission-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.badge {
    background-color: #E91E63;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 16px;
}

.mission-admission h1 {
    color: #1a1a1a;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
}

.mission-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.mission-section h1 span {
    color: #E91E63;
    display: block;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.mission-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.features-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature i {
    color: #4CAF50;
    font-size: 24px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #E91E63;
    font-size: 24px;
}

.feature-item span {
    color: #333;
    font-weight: 500;
}

.feature span {
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.mission-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #E91E63;
    color: white;
}

.cta-button.secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #E91E63;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.cta-button.primary:hover {
    background-color: #D81B60;
}

.cta-button.secondary:hover {
    background-color: #E91E63;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.button {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.button.primary {
    background-color: #E91E63;
    color: white;
}

.button.secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.button.secondary:hover {
    background-color: rgba(233, 30, 99, 0.05);
    border-color: #E91E63;
}

.mission-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #E91E63;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Impact Statistics Section */
.impact-section {
    background: linear-gradient(135deg, #2a1e3d 0%, #1a1127 100%);
    padding: 80px 0;
    text-align: center;
}

.impact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.impact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #E91E63;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 20px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    color: #E91E63;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.stat-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.services-section h2 {
    color: #1a1a1a;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-subtitle {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #E91E63;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    color: #E91E63;
    font-size: 32px;
}

.service-card h3 {
    color: #1a1a1a;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Work in Action Section */
.work-action-section {
    background: #fafbfc;
    padding: 100px 0 80px 0;
    text-align: center;
}

.work-action-section h2 {
    color: #111;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.work-subtitle {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.work-action-underline {
    width: 70px;
    height: 4px;
    background: #E91E63;
    border-radius: 2px;
    margin: 0 auto 40px auto;
}

.work-highlight-bar {
    background: #E91E63;
    color: #fff;
    border-radius: 20px;
    padding: 32px 0 10px 0;
    margin: 0 auto 40px auto;
    max-width: 85vw;
    font-weight: 700;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 24px 0 rgba(233,30,99,0.08);
}

.work-highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.work-highlight-sub {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.work-action-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.work-action-card {
    background: linear-gradient(135deg, #f3f4f7 60%, #e9ebef 100%);
    border-radius: 20px;
    width: 400px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: #b0b4bb;
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}

.work-action-card:hover {
    box-shadow: 0 12px 36px 0 rgba(233,30,99,0.13);
    transform: translateY(-6px) scale(1.03);
    color: #E91E63;
}

@media (max-width: 900px) {
    .work-action-cards {
        flex-direction: column;
        gap: 24px;
    }
    .work-action-card {
        width: 90vw;
        max-width: 400px;
        margin: 0 auto;
    }
    .work-highlight-bar {
        font-size: 1.1rem;
        padding: 24px 0 8px 0;
    }
}
@media (max-width: 600px) {
    .work-action-section {
        padding: 60px 0 40px 0;
    }
    .work-action-card {
        height: 160px;
        font-size: 2.5rem;
    }
    .work-highlight-bar {
        font-size: 1rem;
        padding: 16px 0 6px 0;
    }
    .work-action-underline {
        margin-bottom: 24px;
    }
}

/* Responsive Design for Mission Admission */
@media (max-width: 1024px) {
    .mission-section h1 {
        font-size: 2.8rem;
    }
    
    .mission-image {
        width: 35%;
    }
}

@media (max-width: 768px) {
    .mission-admission {
        padding: 60px 0;
    }

    .mission-section .container {
        padding: 60px 5%;
    }

    .mission-content {
        max-width: 100%;
    }

    .mission-section h1 {
        font-size: 2.2rem;
    }

    .description {
        font-size: 16px;
    }

    .mission-image {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .impact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .impact-section {
        padding: 60px 0;
    }

    .impact-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-title {
        font-size: 20px;
    }

    .stat-description {
        font-size: 14px;
    }
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section h2 {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* Responsive Design for Work in Action */
@media (max-width: 1024px) {
    .work-highlight {
        flex-direction: column;
    }

    .work-images {
        width: 100%;
    }

    .highlight-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .work-action-section {
        padding: 60px 0;
        text-align: center;
    }

    .work-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .highlight-content {
        padding: 30px;
        text-align: center;
    }

    .highlight-content h3 {
        font-size: 24px;
    }

    .highlight-content p {
        font-size: 16px;
    }

    .work-images {
        grid-template-columns: 1fr;
    }

    .work-image {
        height: 250px;
    }
}

/* Student Success Stories Section */
.success-stories-section {
    background: #fff;
    padding: 100px 0 80px 0;
    text-align: center;
}
.success-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.success-subtitle {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.success-underline {
    width: 70px;
    height: 4px;
    background: #E91E63;
    border-radius: 2px;
    margin: 0 auto 40px auto;
}
.success-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.success-card {
    background: #fdf6fb;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(233,30,99,0.08);
    padding: 40px 30px 30px 30px;
    max-width: 370px;
    min-width: 270px;
    flex: 1 1 300px;
    margin: 0 10px 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #f7e0ee;
}
.success-card:hover {
    box-shadow: 0 12px 36px 0 rgba(233,30,99,0.13);
    transform: translateY(-6px) scale(1.03);
}
.success-stars {
    color: #FFD600;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.success-quote {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 30px;
    min-height: 80px;
}
.success-name {
    font-weight: 700;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.success-role {
    color: #E91E63;
    font-size: 1rem;
    font-weight: 400;
}
@media (max-width: 900px) {
    .success-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .success-card {
        max-width: 80vw;
        min-width: 0;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .success-stories-section {
        padding: 60px 0 40px 0;
    }
    .success-title {
        font-size: 2rem;
    }
    .success-card {
        padding: 24px 12px 18px 12px;
    }
    .success-quote {
        font-size: 1rem;
        min-height: 60px;
    }
}